Seal GtkCellRenderer.
authorTim Janik <timj@src.gnome.org>
Fri, 20 Jun 2008 11:01:07 +0000 (11:01 +0000)
committerTim Janik <timj@src.gnome.org>
Fri, 20 Jun 2008 11:01:07 +0000 (11:01 +0000)
* gtk/gtkcellrenderer.h: seal all member fields.  All member fields are
already accessible via GObject properties.

svn path=/trunk/; revision=20525

gtk/gtkcellrenderer.h

index 06bc5c10a3cc628884e37f426e94eae59a5fb5a0..bcb021031b513230200866de0002c7d60c461f03 100644 (file)
@@ -61,22 +61,22 @@ struct _GtkCellRenderer
 {
   GtkObject parent;
 
-  gfloat xalign;
-  gfloat yalign;
-
-  gint width;
-  gint height;
-
-  guint16 xpad;
-  guint16 ypad;
-
-  guint mode : 2;
-  guint visible : 1;
-  guint is_expander : 1;
-  guint is_expanded : 1;
-  guint cell_background_set : 1;
-  guint sensitive : 1;
-  guint editing : 1;
+  gfloat GSEAL (xalign);
+  gfloat GSEAL (yalign);
+
+  gint GSEAL (width);
+  gint GSEAL (height);
+
+  guint16 GSEAL (xpad);
+  guint16 GSEAL (ypad);
+
+  guint GSEAL (mode : 2);
+  guint GSEAL (visible : 1);
+  guint GSEAL (is_expander : 1);
+  guint GSEAL (is_expanded : 1);
+  guint GSEAL (cell_background_set : 1);
+  guint GSEAL (sensitive : 1);
+  guint GSEAL (editing : 1);
 };
 
 struct _GtkCellRendererClass